body {
  background: snow;
  color: #333;
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-size: calc(1em + 0.5vw);
  max-width: min(80ch, 90%);  /* removed the space */
  margin: auto;
}

.topnav {
  margin-top: 30px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
  
.topnav li a:after {
  content:'\00B7';padding-left:5px;
  }

.topnav:last-child li a:after {
  padding-right:0;
  }

/* Change the color of links on hover */
.topnav a:hover {
  color: #13670F;
}

.topnav a.active {
  color: #9A00BF;
}

aside {
        width: 200px;
        border: none;
        padding: 10px;
        margin: 30px;
        float: left;
        font-size: 0.5em;
    }

.aside-rest {
  display: flex;
  flex-direction: column;
  align-items: left;
  position: relative;
  margin-top: 5px;
  margin-bottom: 20px;
}

.aside-rest a {
  color: black !important;

}
    /* The rest of the text */
h1 {
  color: #b85e00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 200%;
}
h2 {
  color: #b85e00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 100%;
}

h3 {
  color: #b85e00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 150%;
}

a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

footer {
  clear: both;
  padding: 10px;
  text-align: center;
  font-size: 0.8em;
}

/* Toggle thingy for poems  */
details {
  border: none;
  border-radius: 4px;
  padding: 0.5em 0.5em 0;
}

summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
  color: #6500b8;
}

details[open] {
  padding: 0.5em;
  font-size: 0.7em;
}

details[open] summary {
  border-bottom: none;
  margin-bottom: 0.5em;
  font-size: 1em;
}
